home *** CD-ROM | disk | FTP | other *** search
/ PC World 2004 June / PCWorld_2004-06_cd.bin / software / vyzkuste / koolmoves / kmsetup.exe / {app} / Motion Scripts / Cartwheel / effect2.txt
Text File  |  2004-02-26  |  666b  |  32 lines

  1. // main_init function
  2.  
  3. main_init = function(mc){
  4. }
  5.  
  6. // main_effect function
  7.  
  8. main_effect = function(mc,frame){
  9.  if (subs_done) end_effect = true;
  10. }
  11.  
  12. // sub_init function
  13.  
  14. sub_init = function(mc){
  15.  if (!out_effect) mc._alpha = 0;
  16. }
  17.  
  18. // sub_effect function
  19.  
  20. sub_effect = function(mc,frame){
  21.  perc = frame / lastsubframe;
  22.  if (out_effect) perc = 1 - perc;
  23.  mc._alpha = perc * 100;
  24.  mc._x = mc.__x * Math.sin(perc * deg90);
  25.  mc._y = mc.__y * Math.sin(perc * deg90);
  26.  mc._xscale = 100 * Math.sin(perc * deg90);
  27.  mc._yscale = 100 + 900 * Math.cos(perc * deg90);
  28.  mc._rotation = 180 + perc * 180;
  29.  if (frame == lastsubframe) mc.done=true;
  30. }
  31.  
  32.